home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / altqb550.zip / DEMON45.BAT < prev    next >
DOS Batch File  |  1992-10-18  |  326b  |  14 lines

  1. @echo off
  2. ret
  3. echo Compiling Assembly-Language Toolbox DEMONstration program.
  4. echo - this version for QuickBASIC 4.5
  5. ret
  6. BC /E/O/S/X demon;
  7. if errorlevel 1 goto exit
  8. Link /E/F demon,,,altquick.lib;
  9. if errorlevel 1 goto exit
  10. copy demon.bas programs > nul
  11. copy demon.exe \execute > nul
  12. erase demon.* > nul
  13. :exit
  14. ret